home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 26.zip / BS1 part 26 / Aztec C v5.2a disk 4.adf / 204inc_i.lzh / intuition / icclass.i < prev    next >
Text File  |  1991-03-14  |  2KB  |  48 lines

  1.     IFND INTUITION_ICCLASS_I
  2. INTUITION_ICCLASS_I SET 1
  3. **
  4. **  $Filename: intuition/icclass.i $
  5. **  $Release: 2.04 $
  6. **  $Revision: 36.3 $
  7. **  $Date: 91/02/05 $
  8. **
  9. **  Gadget/object interconnection classes
  10. **
  11. **  (C) Copyright 1985,1986,1987,1988,1989,1990 Commodore-Amiga, Inc.
  12. **        All Rights Reserved
  13. **
  14.  
  15.  
  16.     IFND UTILITY_TAGITEM_I
  17.     INCLUDE "utility/tagitem.i"
  18.     ENDC
  19.  
  20. ICM_SETLOOP   EQU $402    ; set/increment loop counter
  21. ICM_CLEARLOOP EQU $403    ; clear/decrement loop counter
  22. ICM_CHECKLOOP EQU $404    ; set/increment loop
  23.  
  24. * no arguments for ICM_SETLOOP, ICM_CLEARLOOP, ICM_CHECKLOOP
  25.  
  26. * interconnection attributes used by icclass, modelclass, and gadgetclass
  27.  
  28. ICA_Dummy EQU        $40000
  29. ICA_TARGET EQU        (ICA_Dummy+1)    ; interconnection target
  30. ICA_MAP EQU        (ICA_Dummy+2)    ; interconnection map tagitem list
  31. ICSPECIAL_CODE EQU    (ICA_Dummy+3)    ; a "pseudo-attribute",  see below.
  32.  
  33. * Normally, the value for ICA_TARGET is some object pointer,
  34. * but if you specify the special value ICTARGET_IDCMP, notification
  35. * will be send as an IDCMP_IDCMPUPDATE message to the appropriate window's
  36. * IDCMP port.  See the definition of IDCMP_IDCMPUPDATE. 
  37. *
  38. * When you specify ICTARGET_IDCMP for ICA_TARGET, the map you
  39. * specify will be applied to derive the attribute list that is
  40. * sent with the IDCMP_IDCMPUPDATE message.  If you specify a map list
  41. * which results in the attribute tag id ICSPECIAL_CODE, the
  42. * lower sixteen bits of the corresponding ti_Data value will
  43. * be copied into the Code field of the IDCMP_IDCMPUPDATE IntuiMessage.
  44.  
  45. ICTARGET_IDCMP    EQU $ffffffff
  46.  
  47.     ENDC
  48.